<script LANGUAGE="JavaScript">
//<Body>  <Body/>    
// --></script><script
language="JavaScript"><!--

function click() {
if (event.button==2) {
alert('   ');
}
}
document.onmousedown=click
// --> 
// --></script><script></script>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://go.to/pentium!!!">Pentium!!!</a></font>
</center><p>

-----------------------------

 2

-----------------------

<SCRIPT language=JavaScript><!--

function click() {
if (event.button==2) {
alert('Welcome in My Site :) ');
}
}
document.onmousedown=click
// --> 

-------------------------------
 3
--------------------------------
<SCRIPT language=JavaScript><!--

function click() {
if (event.button==2) {
alert('Welcome in My Site :) ');
}
}
document.onmousedown=click
// --> 

--------------------------

   
-------------------------
<!-- This script has been in the http://www.javascripts.com Javascript Public Library! -->
<!-- Note that though this material may have been in a public depository, certain author copyright restrictions may apply. -->
<html>
<head>
<title>My Script-by Me</title>
</head>
<script language="JavaScript1.2">
/*
No Right Click
   by: Mondain
*/

if (window.Event) // Only Netscape will have the CAPITAL E.
  document.captureEvents(Event.MOUSEUP); // catch the mouse up event

function nocontextmenu()  // this function only applies to IE4, ignored otherwise.
{
	event.cancelBubble = true
	event.returnValue = false;

	return false;
}

function norightclick(e)	// This function is used by all others
{
	if (window.Event)	// again, IE or NAV?
	{
		if (e.which == 2 || e.which == 3)
			return false;
	}
	else
		if (event.button == 2 || event.button == 3)
		{
			event.cancelBubble = true
			event.returnValue = false;
			return false;
		}
	
}

document.oncontextmenu = nocontextmenu;		// for IE5+
document.onmousedown = norightclick;		// for all others
</script>
<body>

<br>

Simba says Roar.<br>

</body>
</html>
        
<--        -->


